home *** CD-ROM | disk | FTP | other *** search
/ Business Assistant / Business Assistant.iso / acctg / tx40e / custom.doc < prev    next >
Text File  |  1988-07-22  |  5KB  |  101 lines

  1. CUSTOMIZATION
  2.  
  3.      Nifty has several default settings that you can alter.  To change each, 
  4. you need to add a special instruction line to each of the two primary files 
  5. (HELP.MNU and MENU.MNU).  
  6.  
  7.  
  8. -- COMMAND DISK
  9.  
  10.      Nifty needs to know where the "COMMAND.COM" program is located in order to 
  11. function properly as a menu.  It assumes that COMMAND.COM is contained in the 
  12. root directory of drive C.  If this assumption is incorrect, you must tell Nif-
  13. ty the hard disk in whose root directory COMMAND.COM is found.  Just enter an 
  14. instruction line that begins with "COMMAND-DISK=", followed by the letter 
  15. designator for the drive in whose root directory COMMAND.COM resides.  Example: 
  16. "COMMAND-DISK=D" tells nifty that COMMAND.COM in in the root directory of drive 
  17. D.  If you provide incorrect information here, the Nifty Menu system won't 
  18. work.
  19.  
  20. -- PREVENTING USER EXITING
  21.  
  22.      If you don't want the user to be able to exit the Nifty Menu system, 
  23. include in the MENU.MNU file an instruction line that says, "NO-ALT-X".
  24.  
  25. -- PREVENTING ACCESS TO DOS FUNCTIONS
  26.  
  27.      If you don't want the user to be able to access DOS functions, include in 
  28. the MENU.MNU file an instruction line that says, "NO-ALT-D".
  29.  
  30. -- USER LOG 
  31.  
  32.      If you want the Nifty Menu system to keep track of who uses your computer 
  33. and when, you should include a line in the MENU.MNU file that says "USERLOG".  
  34. Without this line, usage logging will not take place.  If the "USER-LOG" ins-
  35. truction is encountered, Nifty will create a file called "NIFTY.LOG".  Every 
  36. time the user accesses something within the Nifty Menu system, a new line will 
  37. be written to NIFTY.LOG.  This line will contain the date and time of the ac-
  38. cess, as well as the item accessed and the user's password (if appropriate).
  39.  
  40. -- HOTKEY 
  41.  
  42.      The default hotkey is ALT-N.  To change it, you need to add two instruc-
  43. tion lines.  The first begins with "HOTKEY=", followed by the hot key descrip-
  44. tion.  The second begins with "HOTKEY-CODE=", followed by keyboard scan hex 
  45. code corresponding to your new hotkey.  The five-character hex sequence will 
  46. look like this:  "$08xx", where "xx" is the scan code of the key you wish to 
  47. use in combination with the ALT key.  Use "$04xx" for CTRL key combinations.  
  48. For example, to change your hotkey to CTRL-H, the two lines you add would be:
  49.  
  50.                               HOTKEY=CTRL-H
  51.                               HOTKEY-CODE=$0423
  52.  
  53. The equivalent of the default hotkey (ALT-N) is:
  54.  
  55.                               HOTKEY=ALT-N
  56.                               HOTKEY-CODE=$0831
  57.  
  58. You'll need to consult with a DOS manual to find a complete list of keyboard 
  59. scan codes, but here are a few:  
  60.  
  61.    Q=10  W=11  E=12  R=13  T=14  Y=15  U=16  I=17  O=18  P=19  A=1E  S=1F  
  62.    D=20  F=21  G=22  J=24  K=25  L=26  Z=2C  X=2D  C=2E  V=2F  B=30  M=32
  63.  
  64.  
  65. -- SCREEN COLORS 
  66.  
  67.      To change the foreground color, enter a line beginning with "FOREGROUND=", 
  68. followed by a two digit color code.  To change the background, the line should 
  69. begin with "BACKGROUND=".  The color codes are:
  70.  
  71.                     00 Black           08 DarkGray
  72.                     01 Blue            09 LightBlue
  73.                     02 Green           10 LightGreen   
  74.                     03 Cyan            11 LightCyan
  75.                     04 Red             12 LightRed
  76.                     05 Magenta         13 LightMagenta
  77.                     06 Brown           14 Yellow
  78.                     07 Light Gray      15 White   
  79.  
  80.      Don't change colors if you have a monochrome video board.
  81.  
  82. -- WINDOW SIZE 
  83.  
  84.      By default, Nifty uses the whole screen.  If you want to make its window 
  85. smaller, you will need to indicate its left and right columns and its top and 
  86. bottom rows.  The window-sizing instruction lines you enter should begin with 
  87. one of the following:  "TOP=", "BOTTOM=", "LEFT=", or "RIGHT=".  Following each 
  88. of these commands would be a two-digit number, indicating either a row or a 
  89. column:
  90.  
  91.                                    LEFT=10
  92.                                    TOP=05
  93.                                    RIGHT=70
  94.                                    BOTTOM=20
  95.  
  96. This series of instruction lines tells Nifty that its window begins at column 
  97. 10, row 5, and ends at column 70, row 20.
  98.  
  99.      If you change the window size, be sure to design your Help system and Menu 
  100. system screens to fit within the window.
  101.